From 50beae7541d2f13240f7ac39bed5997fbb6eee12 Mon Sep 17 00:00:00 2001 From: Kjell Ahlstedt Date: Tue, 16 Mar 2021 09:52:13 +0100 Subject: [PATCH] meson: Find libcairo-script-interpreter when cairo is a subproject If cairo is a subproject, it's not necessarily installed when gtk is built. In the build tree, libcairo-script-interpreter is not stored in the same directory as other cairo libraries. --- gsk/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gsk/meson.build b/gsk/meson.build index 8e2b0f1782..24b6be14da 100644 --- a/gsk/meson.build +++ b/gsk/meson.build @@ -230,5 +230,5 @@ libgsk = static_library('gsk', # "public" libgtk_dep used by internal executables. libgsk_dep = declare_dependency(include_directories: [ confinc, ], sources: [ gskenum_h, ], - dependencies: libgdk_dep, + dependencies: [libgdk_dep, cairo_csi_dep], ) -- 2.30.2